/* Section */
.secretary-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9fbfd, #eef3f9);
}

/* Layout */
.secretary-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Image */
.secretary-img {
  flex: 1.2;
  text-align: center;
  animation: fadeInLeft 1s ease;
}

.secretary-img img {
  width: 450px;   /* Large image */
  max-width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transition: transform 0.4s ease;
}

.secretary-img img:hover {
  transform: scale(1.05);
}

/* Text */
.secretary-text {
  flex: 1.8;
  animation: fadeInRight 1s ease;
}

.secretary-text h3 {
  font-size: 26px;
  margin-bottom: 5px;
}

.designation {
  color: #007bff;
  font-weight: 500;
  margin-bottom: 10px;
}

.highlight {
  font-weight: bold;
  font-size: 18px;
  color: #007bff;
}

.bold {
  font-weight: bold;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .secretary-content {
    flex-direction: column;
    text-align: center;
  }

  .secretary-img img {
    width: 340px;
  }
}

@media (max-width: 576px) {
  .secretary-img img {
    width: 260px;
  }

  .secretary-text h3 {
    font-size: 22px;
  }
}